home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bsdmainutils.postinst < prev    next >
Text File  |  2009-05-08  |  540b  |  22 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if [ -f /usr/lib/calendar/default ]; then
  6.   mv -f /usr/lib/calendar/default /etc/calendar/default.old
  7.  
  8.   # don't kill installation if directory can't be removed
  9.   rmdir /usr/lib/calendar 2>/dev/null || true
  10. fi
  11.  
  12. # handle name change of cron script
  13. if [ -f /etc/cron.daily/calendar ]; then
  14.   mv -f /etc/cron.daily/calendar /etc/cron.daily/bsdmainutils
  15. fi
  16.  
  17. update-alternatives \
  18.     --install /usr/bin/write write /usr/bin/bsd-write 100 \
  19.     --slave /usr/share/man/man1/write.1.gz write.1.gz /usr/share/man/man1/bsd-write.1.gz
  20.  
  21.  
  22.